Synchronize trunk with dropped destinator, easygps formats.
authorRobert Lipe <robertlipe@gmail.com>
Sat, 26 Mar 2022 10:49:33 +0000 (05:49 -0500)
committerRobert Lipe <robertlipe@gmail.com>
Sat, 26 Mar 2022 10:49:33 +0000 (05:49 -0500)
reference/format3.txt
reference/help.txt
vecs.cc

index 7be292ff72f3d57954fa843848db8f7280ba1102..d0e5c366950cd1a2b39fc2da31f34750d3cf6b53 100644 (file)
@@ -132,15 +132,6 @@ option     saplus  prefer_shortnames       Use shortname instead of description    boolean
 
 option saplus  datum   GPS datum (def. WGS 84) string                          https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_datum
 
-file   ----rw  destinator_itn  dat     Destinator Itineraries (.dat)   destinator_itn
-       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_itn.html
-file   rw----  destinator_poi  dat     Destinator Points of Interest (.dat)    destinator_poi
-       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_poi.html
-file   --rw--  destinator_trl  dat     Destinator TrackLogs (.dat)     destinator_trl
-       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_trl.html
-file   rw----  easygps loc     EasyGPS binary format   easygps
-       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_easygps.html
-
 file   rw----  exif    jpg     Embedded Exif-GPS data (.jpg)   exif
        https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html
 option exif    filename        Set waypoint name to source filename    boolean Y                       https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_filename
index 7cf8c1434ab4a64ecb93da543ff1ff017bc03562..a698cbc9eaef3e69fbfa4786888755fd65908965 100644 (file)
@@ -74,10 +74,6 @@ File Types (-i and -o options):
          urlbase               Basename prepended to URL on output 
          prefer_shortnames     (0/1) Use shortname instead of description 
          datum                 GPS datum (def. WGS 84) 
-       destinator_itn        Destinator Itineraries (.dat)
-       destinator_poi        Destinator Points of Interest (.dat)
-       destinator_trl        Destinator TrackLogs (.dat)
-       easygps               EasyGPS binary format
        exif                  Embedded Exif-GPS data (.jpg)
          filename              (0/1) Set waypoint name to source filename 
          frame                 Time-frame (in seconds) 
diff --git a/vecs.cc b/vecs.cc
index 03991c1680e784b6e8d9ea52628f33ef3592bf07..b0290cc64dfc3f20776ce0d06b90f23114b7aeed 100644 (file)
--- a/vecs.cc
+++ b/vecs.cc
@@ -85,7 +85,6 @@ extern ff_vecs_t holux_vecs;
 extern ff_vecs_t tpg_vecs;
 extern ff_vecs_t tpo2_vecs;
 extern ff_vecs_t tpo3_vecs;
-extern ff_vecs_t easygps_vecs;
 extern ff_vecs_t gpl_vecs;
 extern ff_vecs_t igc_vecs;
 extern ff_vecs_t brauniger_iq_vecs;
@@ -156,7 +155,6 @@ struct Vecs::Impl
   LegacyFormat tpg_fmt {tpg_vecs};
   LegacyFormat tpo2_fmt {tpo2_vecs};
   LegacyFormat tpo3_fmt {tpo3_vecs};
-  LegacyFormat easygps_fmt {easygps_vecs};
 #if SHAPELIB_ENABLED
   ShapeFormat shape_fmt;
 #endif
@@ -344,13 +342,6 @@ struct Vecs::Impl
       "tpo",
       nullptr,
     },
-    {
-      &easygps_fmt,
-      "easygps",
-      "EasyGPS binary format",
-      "loc",
-      nullptr,
-    },
 #if SHAPELIB_ENABLED
     {
       &shape_fmt,